Skip to content

Commit 7eddff6

Browse files
committed
change package name and repo name
1 parent f813302 commit 7eddff6

File tree

8 files changed

+21
-15
lines changed

8 files changed

+21
-15
lines changed

.gitignore

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ build/*
33
.clangd/*
44
obj-x86_64-linux-gnu/*
55
debian/.debhelper/*
6-
debian/ndate/*
6+
debian/nepdate-cli/*
77
debian/usr/*
88
debian/debhelper-build-stamp
99
debian/files
10-
debian/ndate.substvars
11-
debian/ndate.debhelper.log
10+
debian/nepdate-cli.substvars
11+
debian/nepdate-cli.debhelper.log

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
cmake_minimum_required(VERSION 3.5)
33

44
# Set the project name
5-
project(ndate)
5+
project(nepdate-cli)
66

77
# Add the src subdirectory
88
add_subdirectory(src)

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
nepdate-cli is a command-line tool for displaying and converting dates between the Bikram Sambat (Vikram Samvat) and Gregorian calendars. It's a simple utility designed for easy interaction with these two calendar systems.
44

5+
> [!NOTE]
6+
> Rust port is available at rust branch of this repository. if you want to install just binary using cargo use
7+
> ``` cargo install nepdate-cli ``` or use as dependency on Cargo.toml file. ``` ndate = "0.1.1" ```
8+
> check https://github.com/khumnath/nepdate-cli/blob/rust/src/bikram.rs for available functions or https://github.com/khumnath/nepdate-cli/blob/rust/src/main.rs for example uses.
9+
10+
511
### Features
612

713
- Display the current Bikram Sambat date.

debian/changelog

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ndate (1.0.0) stable; urgency=medium
1+
nepdate-cli (1.0.0) stable; urgency=medium
22

33
* Initial release.
44

debian/control

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
Source: ndate
1+
Source: nepdate-cli
22
Section: utils
33
Priority: optional
44
Maintainer: khumnath <[email protected]>
55
Build-Depends: debhelper-compat (= 13), cmake
66
Standards-Version: 4.6.1
7-
Homepage: https://github.com/khumnath/ndate
7+
Homepage: https://github.com/khumnath/nepdate-cli
88

9-
Package: ndate
9+
Package: nepdate-cli
1010
Architecture: any
1111
Depends: ${shlibs:Depends}, ${misc:Depends}
1212
Description: Bikram Sambat (Vikram Samvat) date CLI tool

debian/copyright

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
2-
Upstream-Name: ndate
2+
Upstream-Name: nepdate-cli
33
Upstream-Contact: khumnath cg <[email protected]>
4-
Source: https://github.com/khumnath/ndate
4+
Source: https://github.com/khumnath/nepdate-cli
55

66
Files: *
77
Copyright: 2024 khumnath cg <[email protected]>

debian/upstream/metadata

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
Bug-Database: https://github.com/khumnath/ndate/issues
3-
Bug-Submit: https://github.com/khumnath/ndate/issues/new
4-
Repository: https://github.com/khumnath/ndate/issues.git
5-
Repository-Browse: https://github.com/khumnath/ndate
2+
Bug-Database: https://github.com/khumnath/nepdate-cli/issues
3+
Bug-Submit: https://github.com/khumnath/nepdate-cli/issues/new
4+
Repository: https://github.com/khumnath/nepdate-cli/issues.git
5+
Repository-Browse: https://github.com/khumnath/nepdate-cli

debian/watch

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
version=4
22
opts=filenamemangle=s/.+\/v?(\d\S+)\.tar\.gz/toml11-$1\.tar\.gz/ \
3-
https://github.com/khumnath/ndate/tags .*/v?(\d\S+)\.tar\.gz
3+
https://github.com/khumnath/nepdate-cli/tags .*/v?(\d\S+)\.tar\.gz
44

0 commit comments

Comments
 (0)